home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / collections / ICollectionView.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  797 b   |  31 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ICollectionView extends IEventDispatcher
  6.    {
  7.       function set filterFunction(param1:Function) : void;
  8.       
  9.       function enableAutoUpdate() : void;
  10.       
  11.       function get length() : int;
  12.       
  13.       function disableAutoUpdate() : void;
  14.       
  15.       function itemUpdated(param1:Object, param2:Object = null, param3:Object = null, param4:Object = null) : void;
  16.       
  17.       function get filterFunction() : Function;
  18.       
  19.       function createCursor() : IViewCursor;
  20.       
  21.       function refresh() : Boolean;
  22.       
  23.       function set sort(param1:Sort) : void;
  24.       
  25.       function get sort() : Sort;
  26.       
  27.       function contains(param1:Object) : Boolean;
  28.    }
  29. }
  30.  
  31.